home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 6 / FM Towns Free Software Collection 6.iso / t_os / book / src / cons.h < prev    next >
C/C++ Source or Header  |  1993-07-08  |  747b  |  22 lines

  1. /*
  2.  *  console low I/O
  3. */
  4.  
  5. #define IS_ANK      0   /*  シフトJIS文字列の文字種表示  */
  6. #define IS_KANJI1   1   /*  typecheck() で type[] にセットされる値  */
  7. #define IS_KANJI2   2
  8.  
  9. #define CTRL_PRE    (0x01)  /*  制御文字の前置文字  */
  10.  
  11. extern  int     wind_open(int x,int y, int len, int *curpos, char *init);
  12. extern  void    wind_close(void);
  13.  
  14. extern  void    KAN_start(void);                /*  かな漢使用開始  */
  15. extern  void    KAN_end(void);                  /*  かな漢使用終了  */
  16. extern  void    KAN_dispMode(void);             /*  モードを再表示  */
  17. extern  void    KAN_setposMode(int x, int y);   /*  モード表示位置  */
  18.  
  19. extern  void    inpch(int ch);
  20. extern  void    typecheck(char type[], char buf[], int width);
  21.  
  22.